home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-03-29 | 374 b | 15 lines | [TEXT/MPS ] |
- // Copyright © 1992-1993 Emergent Behavior. All rights reserved.
-
- #pragma segment Main
- //=============================================================
- void
- main()
- {
- const OSType kFileType = 'PICT';
- const OSType kCreator = 'QApi';
-
- TApplication::InitToolbox();
- TApplication theApp(kCreator, kFileType);
- theApp.AdoptProtoDocument( new TPictDocument() );
- theApp.Run();
- }